Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

I finally found the bug, it should be working now.

I don’t even know why it worked with the VM compiler in the first place, the code was trying to access a variable which didn’t exist in that scope. Anyway, GameMaker is weird sometimes. Please tell me if it works now.

Yeah, that fixed it. Thanks for the quick response.

I'm going to implement the fix into my game. Was the fix just changing the one line from:

page[i] = [name, new oMenu.Input(in_sys, name)]

to:

page[i] = [name, new Input(in_sys, name)]

or was there more to the fix?

Thanks again!

Yes, just remove the oMenu. and it’ll work.

Okay, thank you!