mirror of
https://github.com/fallout2-ce/fallout2-ce.git
synced 2026-07-27 16:47:11 -07:00
+3
-3
@@ -1124,7 +1124,7 @@ Sound* soundEffectLoad(const char* name, Object* object)
|
||||
snprintf(path, sizeof(path), "%sH%cXXXX%s%s", _sound_sfx_path, v9, name + 6, ".ACM");
|
||||
|
||||
if (gGameSoundDebugEnabled) {
|
||||
debugPrint("tyring %s ", path + strlen(_sound_sfx_path));
|
||||
debugPrint("trying %s ", path + strlen(_sound_sfx_path));
|
||||
}
|
||||
|
||||
if (soundLoad(sound, path) == 0) {
|
||||
@@ -1139,7 +1139,7 @@ Sound* soundEffectLoad(const char* name, Object* object)
|
||||
snprintf(path, sizeof(path), "%sHMXXXX%s%s", _sound_sfx_path, name + 6, ".ACM");
|
||||
|
||||
if (gGameSoundDebugEnabled) {
|
||||
debugPrint("tyring %s ", path + strlen(_sound_sfx_path));
|
||||
debugPrint("trying %s ", path + strlen(_sound_sfx_path));
|
||||
}
|
||||
|
||||
if (soundLoad(sound, path) == 0) {
|
||||
@@ -1157,7 +1157,7 @@ Sound* soundEffectLoad(const char* name, Object* object)
|
||||
snprintf(path, sizeof(path), "%sMAMTNT%s%s", _sound_sfx_path, name + 6, ".ACM");
|
||||
|
||||
if (gGameSoundDebugEnabled) {
|
||||
debugPrint("tyring %s ", path + strlen(_sound_sfx_path));
|
||||
debugPrint("trying %s ", path + strlen(_sound_sfx_path));
|
||||
}
|
||||
|
||||
if (soundLoad(sound, path) == 0) {
|
||||
|
||||
@@ -4327,7 +4327,7 @@ static void opCritterModifySkill(Program* program)
|
||||
scriptPredefinedError(program, "critter_mod_skill", SCRIPT_ERROR_OBJECT_IS_NULL);
|
||||
}
|
||||
|
||||
programStackPushInteger(program, 0);
|
||||
// CE: remove returnval, which ssl compiler doesn't expect
|
||||
}
|
||||
|
||||
// sfx_build_char_name
|
||||
|
||||
Reference in New Issue
Block a user