Video Freeze Bug Fix - An Easier Method


We found that there is a much simpler method to fix the Video problem which does NOT involve limiting your frame rate. This process will explain how to edit a line on one the JS files in a certain folder.

1. While Final Fantasy 2-2 is NOT running, Open Windows File Explorer, and click on your Documents Icon on the left pane to open your documents folder.

2. Find the game's folder in your Documents folder and open it (double click). It should be called II-2

3. From there, follow this path (double click the following folders in this order): II-2 > www > js

4. Once you are in the js subfolder, right click on the file rpg_core.js (it may just be called rpg_core if you have file extensions hidden) and select Edit in Notepad or Edit to open the file in Notepad.

5. Press CTRL + F to open the Find window, and type or copy (CTRL + C) this string into it: this._skipCount === 0 and press Enter.

6. You should see this in Notepad:


Graphics.render = function(stage) {

    if (this._skipCount === 0) {

        var startTime = Date.now();

        if (stage) {

            this._renderer.render(stage);

            if (this._renderer.gl && this._renderer.gl.flush) {

                this._renderer.gl.flush();

7. Change the 3 equals signs in if (this._skipCount === 0) to <= if (this._skipCount <= 0)

8. Save the file and exit notepad, you may now run the game without the video freezing anymore!

Get Final Fantasy II-2 Genesis of the Dark Crystals

Leave a comment

Log in with itch.io to leave a comment.