SometimesRain / crazyclient

A hacked client for Realm of the Mad God.
The Unlicense
21 stars 13 forks source link

Fullscreen Steam #13

Open Zaikay33 opened 7 years ago

Zaikay33 commented 7 years ago

Fullscreen on steam doesn't work, the screen expands whilst the ui doesn't. When i press o that is expanded but the game is in a little box.

Whytes commented 7 years ago

Can confirm, will look to see if I see anything.

Whytes commented 7 years ago

This is where the problem lies, too tired to try and fix right now, might check tomorrow.

private function fsCommands(param1:String):Boolean { param1 = param1.toLowerCase(); var loc2:DisplayObject = Parameters.root; if (param1 == "/fs") { if (loc2.stage.scaleMode == StageScaleMode.EXACT_FIT) { loc2.stage.scaleMode = StageScaleMode.NOSCALE; Parameters.data.stageScale = StageScaleMode.NO_SCALE; addTextLine.dispatch(ChatMessage.make("Help","Fullscreen: On")); } else { loc2.stage.scaleMode = StageScaleMode.EXACTFIT; Parameters.data.stageScale = StageScaleMode.EXACT_FIT; addTextLine.dispatch(ChatMessage.make("Help","Fullscreen: Off")); } Parameters.save(); loc2.dispatchEvent(new Event(Event.RESIZE)); return true; }