This file contains 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
OBS uses window title to ID certain scene elements, can't match with the constant PCSX2 title updates | |
Comment out title updates | |
// SetTitle(title); | |
pcsx2 -> gui -> FrameForGS.cpp | |
Line 668 accurate as of commit https://github.com/PCSX2/pcsx2/commit/af2278c3c28682134146ecff8bb028bd9075d49a | |
Compile |
This file contains 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
[sources] | |
source[1]=http://www.mvps.org/winhelp2002/hosts.txt | |
source[2]=http://someonewhocares.org/hosts/zero/hosts | |
source[3]=http://pgl.yoyo.org/adservers/serverlist.php?hostformat=hosts&mimetype=plaintext | |
source[4]=http://adblock.mahakala.is | |
source[5]=http://adaway.org/hosts.txt | |
source[6]=http://www.malwaredomainlist.com/hostslist/hosts.txt | |
source[7]=http://www.hosts-file.net/ad_servers.txt | |
source[8]=https://raw.githubusercontent.com/StevenBlack/hosts/master/data/StevenBlack/hosts | |
source[9]=https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts |
This file contains 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
### 2021-08-02 still using qt5-opengl-dev_5.12.5_armhf.deb, need to check if it is still required | |
### update .bashrc with QT_SELECT | |
Add QT_SELECT to your bashrc | |
$ vi ~/.bashrc | |
export QT_SELECT=qt5-openg | |
### install Qt5.12 from https://github.com/koendv/qt5-opengl-raspberrypi | |
$ wget https://github.com/koendv/qt5-opengl-raspberrypi/releases/download/v5.12.5-1/qt5-opengl-dev_5.12.5_armhf.deb | |
# apt install ./qt5-opengl-dev_5.12.5_armhf.deb |
This file contains 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
#!/bin/bash | |
# | |
# build SDL2 with x11/vulkan support on rpi4 | |
# mostly to test vk(quake(1|2|3)|openarena) | |
# | |
# nb: the APTOPS are for twisteros being stupid, comment them out for other distros | |
DEVBASE=$HOME/devel | |
APTOPTS="-o Acquire::AllowInsecureRepositories=true" | |
PREFIX="/usr/local/lib" |
This file contains 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/platform/sdl2-platform.c b/src/platform/sdl2-platform.c | |
index cdcdbe4..d2b390c 100644 | |
--- a/src/platform/sdl2-platform.c | |
+++ b/src/platform/sdl2-platform.c | |
@@ -3,7 +3,7 @@ | |
#endif | |
#include <limits.h> | |
-#include <SDL_image.h> | |
+#include <SDL2/SDL_image.h> |
This file contains 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
#!/bin/bash | |
#set -x | |
export PREFIX=/opt/xfce4.16 | |
export PKG_CONFIG_PATH="${PREFIX}/lib/pkgconfig:$PKG_CONFIG_PATH" | |
export CFLAGS="-O2 -pipe" | |
LOGDIR=$HOME/logs/xfce |
This file contains 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
#!/bin/bash | |
#set -x | |
export PREFIX=/opt/xfce4.16 | |
export PKG_CONFIG_PATH="${PREFIX}/lib/pkgconfig:$PKG_CONFIG_PATH" | |
export CFLAGS="-O2 -pipe" | |
LOGDIR=$HOME/logs/xfce |
This file contains 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
#!/bin/bash | |
_log_output() { | |
local ITEM=$1 | |
shift | |
echo "${ITEM}: $*" | |
} | |
_strip_string() { |
This file contains 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
https://au-mirror.bret.dk/armbian/dl/rockpi-4b/archive/ | |
https://gist.github.com/gbaman/50b6cca61dd1c3f88f41 | |
https://docs.armbian.com/User-Guide_Allwinner_overlays/ | |
https://forum.armbian.com/topic/19206-rockpi-4abc-usb-otg-mode-in-currentmainline-kernels/ | |
https://forum.radxa.com/t/mainline-support-for-rockpi-4/131/56 | |
https://forum.armbian.com/topic/12455-rock-pi-4-usb-storage-is-flaky-on-usb-3-otg-port/ | |
https://matt.olan.me/making-a-piscsi-usb-drive-part-1/ |