stupid changes

This commit is contained in:
DepressedTWM 2026-08-01 00:38:16 +04:00
parent 6f8ec2f027
commit 37a61e822e
3 changed files with 5 additions and 13 deletions

View file

@ -22,7 +22,6 @@ module Settings
:language => 0,
:fasttravel_ui => 0,
:mainmenu_background => 0,
:ui_theme => 0,
# Gameplay
:movement => 0,
@ -241,12 +240,6 @@ class Window_Settings
:parameter => :mainmenu_background,
:values => ["Original", "Badend", "Title Black"]
},
{
:type => :enum,
:name => "UI theme",
:parameter => :ui_theme,
:values => ["Original", "World Machine", "World Machine Square"]
},
],
"Gameplay" => [
{ :type => :sep, :name => "Vanilla" },

View file

@ -54,7 +54,6 @@ class Window_Message < Window_Selectable
# Text blip sound
@blipsound = nil
RPG::Mod.exec_hooks("hooks/Window_Message/init", binding)
end
#--------------------------------------------------------------------------
# * Dispose
@ -182,7 +181,7 @@ class Window_Message < Window_Selectable
$game_system.windowskin_name = "normal"
if $game_temp.message_face != nil
if $game_temp.message_face.start_with?("en")
$game_system.windowskin_name = "en_normal"
$game_system.windowskin_name = "en_square"
self.y = 16;
else
$game_system.windowskin_name = "normal"

View file

@ -7,11 +7,11 @@ check_file() {
case "$f" in
*.c|*.cc|*.cpp|*.cxx)
cppcheck --check-level=exhaustive --disable=missingInclude --enable=all --force -q -I . "$f" \
|| echo "cppcheck is not installed or reported issues for: $f"
#cppcheck --check-level=exhaustive --disable=missingInclude --enable=all --force -q -I . "$f" \
# || echo "cppcheck is not installed or reported issues for: $f"
gcc -fanalyzer -Wall -Wextra -Wpedantic -std=c11 -c "$f" -o /dev/null 2>/dev/null \
|| echo "gcc is not installed or analyzer reported issues for: $f"
#gcc -fanalyzer -Wall -Wextra -Wpedantic -std=c11 -c "$f" -o /dev/null 2>/dev/null \
# || echo "gcc is not installed or analyzer reported issues for: $f"
cbmc "$f" \
|| echo "cbmc is not installed or reported issues for: $f"