ULTIMA8: Default to no mouse cursor in Crusader

This commit is contained in:
Matthew Duggan 2021-05-08 14:57:46 +09:00
parent f5c4374888
commit d83ccb7e9b

View File

@ -203,8 +203,11 @@ int Mouse::getMouseFrame() {
switch (cursor) {
case MOUSE_NORMAL: {
if (GAME_IS_CRUSADER)
return -1;
bool combat = false;
MainActor *av = getMainActor();
const MainActor *av = getMainActor();
if (av) {
combat = av->isInCombat();
}