This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/src/device/r4300/new_dynarec/arm64/assem_arm64.c b/src/device/r4300/new_dynarec/arm64/assem_arm64.c | |
index 0d80a0a0..fb2a3a7d 100644 | |
--- a/src/device/r4300/new_dynarec/arm64/assem_arm64.c | |
+++ b/src/device/r4300/new_dynarec/arm64/assem_arm64.c | |
@@ -3740,69 +3740,63 @@ static void fconv_assemble_arm64(int i,struct regstat *i_regs) | |
save_regs(reglist); | |
if(opcode2[i]==0x14&&(source[i]&0x3f)==0x20) { | |
- if(fs>=0) emit_mov(fs,ARG1_REG); | |
- else emit_loadreg(FSREG,ARG1_REG); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/start.sh b/start.sh | |
index 2ae81af..2980a1f 100755 | |
--- a/start.sh | |
+++ b/start.sh | |
@@ -7,6 +7,23 @@ CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" | |
cd "${CURRENT_DIR}" | |
source support/gog_com.shlib | |
+# | |
+# fix game :) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
UNAME=$(uname -s) | |
if [[ $UNAME == *"MINGW"* ]]; then | |
suffix=".dll" | |
if [[ $UNAME == *"MINGW64"* ]]; then | |
mingw_prefix="mingw64" | |
else | |
mingw_prefix="mingw32" | |
fi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Threading.Tasks; | |
using System.Linq; | |
using System; | |
using System.IO; | |
using System.Collections.Generic; | |
using System.Threading; | |
namespace BunnyIrc | |
{ | |
/// <summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
#set -x | |
GITLAB_URL="https://git.froggi.es" | |
GITLAB_PROJECT="joshua/d9vk" | |
CACHE="$HOME/.cache/d9vk-install/" | |
CACHE_EXTRACTED="$CACHE/extracted" | |
if [ ! -d "$CACHE" ] | |
then |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
warn: D3DPERF_GetStatus: Stub | |
info: Game: BurnoutParadise.exe | |
info: DXVK: v1.0.1 | |
warn: OpenVR: Failed to locate module | |
info: Enabled instance extensions: | |
info: VK_KHR_get_physical_device_properties2 | |
info: VK_KHR_surface | |
info: VK_KHR_win32_surface | |
info: GeForce GTX 1050: | |
info: Driver: 418.52.3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Linq; | |
using System.Security; | |
using System.Text; | |
using IrcSharp; | |
using StringExtensions; | |
namespace csii | |
{ | |
class Program |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Security; | |
using System.Text; | |
using IrcSharp; | |
namespace csii | |
{ | |
class Program | |
{ | |
static void Main(string[] args) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
info: Game: farcry2.exe | |
info: DXVK: v1.0.1 | |
warn: OpenVR: Failed to locate module | |
info: Enabled instance extensions: | |
info: VK_KHR_get_physical_device_properties2 | |
info: VK_KHR_surface | |
info: VK_KHR_win32_surface | |
info: GeForce GTX 1050: | |
info: Driver: 418.56.0 | |
info: Vulkan: 1.1.95 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
int main(void) | |
{ | |
int height = 0; | |
printf("Height: "); | |
scanf("%i", &height); | |
if(height <= 0) |
NewerOlder