1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-11-07 11:22:45 +01:00

Fix wrong name in RW_UNIMPLEMENTED for game_has_death_or_arrest_finished

This commit is contained in:
Jannik Vogel 2016-05-27 00:15:16 +02:00
parent 5628f6ceb9
commit 7e3eb744f8

View File

@ -99,7 +99,7 @@ void game_set_dead_or_arrested(const ScriptArguments& args)
bool game_has_death_or_arrest_finished(const ScriptArguments& args)
{
RW_UNUSED(args);
RW_UNIMPLEMENTED("game_is_button_pressed()");
RW_UNIMPLEMENTED("game_has_death_or_arrest_finished()");
return false;
}