Compare commits

..

3 Commits

Author SHA1 Message Date
N00byKing
b2386fc712 Update default_ini.h 2018-01-17 18:01:09 +01:00
bunnei
d92636d424 Merge pull request #67 from RiverCityRansomware/gdbstubtypo
Fix gdbstub typo
2018-01-17 10:27:00 -05:00
River City Ransomware
d05dc3f4dd Fix gdbstub typo, fixes Citra #3318
Core::System().GetInstance().IsPoweredOn() -> Core::System::GetInstance().IsPoweredOn()
2018-01-17 09:25:25 -05:00
3 changed files with 3 additions and 25 deletions

View File

@@ -905,7 +905,7 @@ void ToggleServer(bool status) {
server_enabled = status;
// Start server
if (!IsConnected() && Core::System().GetInstance().IsPoweredOn()) {
if (!IsConnected() && Core::System::GetInstance().IsPoweredOn()) {
Init();
}
} else {

View File

@@ -124,8 +124,8 @@ custom_bottom_top =
custom_bottom_right =
custom_bottom_bottom =
#Whether to toggle frame limiter on or off.
# 0: Off , 1 (default): On
# Whether to toggle frame limiter on or off.
# 0: Off, 1 (default): On
toggle_framelimit =
# Swaps the prominent screen with the other screen.

View File

@@ -1,22 +0,0 @@
#!/bin/bash
# Tool for checking for clang-format compliance
# Heavily inspired by: https://github.com/dolphin-emu/dolphin/blob/master/Tools/lint.sh
COMMIT=${1:---cached}
FILES=$(git diff --name-only --diff-filter=ACMRTUXB $COMMIT)
EXIT_CODE=0
for f in ${FILES}; do
# Ignore anything that isn't a source file
if ! echo "$f" | egrep -q "^src.*\.(cpp|h)$"; then
continue
fi
# Check if clang-format and the original differ
if ! clang-format "$f" | diff - "$f"; then
echo "$f violates the coding style, fix listed above"
EXIT_CODE=1
fi
done
exit $EXIT_CODE