Skip to content

Commit

Permalink
Hotfix Update #2
Browse files Browse the repository at this point in the history
  • Loading branch information
Raltyro committed Feb 26, 2023
1 parent 765e352 commit 34c9ca6
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,11 @@ jobs:

- name: Compile (32-bit)
if: ${{ matrix.build == '32bit' }}
run: haxelib run openfl build ${{ matrix.compile }} -${{ matrix.build }} -D 32
run: haxelib run openfl build ${{ matrix.compile }} -${{ matrix.build }} -D HXCPP_M32 -32

- name: Compile (64-bit)
if: ${{ matrix.build != '32bit' }}
run: haxelib run openfl build ${{ matrix.compile }} -${{ matrix.build }} -D 64
run: haxelib run openfl build ${{ matrix.compile }} -${{ matrix.build }} -64

- name: Uploading artifact
uses: actions/upload-artifact@v3
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,11 +72,11 @@ jobs:

- name: Compile (32-bit)
if: ${{ matrix.build == '32bit' }}
run: haxelib run openfl build ${{ matrix.compile }} -${{ matrix.build }} -D officialBuild -D 32
run: haxelib run openfl build ${{ matrix.compile }} -${{ matrix.build }} -D officialBuild -D HXCPP_M32 -32

- name: Compile (64-bit)
if: ${{ matrix.build != '32bit' }}
run: haxelib run openfl build ${{ matrix.compile }} -${{ matrix.build }} -D officialBuild -D 64
run: haxelib run openfl build ${{ matrix.compile }} -${{ matrix.build }} -D officialBuild -64

- name: Uploading artifact
uses: actions/upload-artifact@v3
Expand Down
10 changes: 5 additions & 5 deletions source/options/AdvancedSubstate.hx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class AdvancedSubstate extends BaseOptionsMenu
var blackBG:FlxSprite;
var coolText:Alphabet;
var timer:FlxTimer;

public function new()
{
title = 'Advanced';
Expand All @@ -23,13 +23,13 @@ class AdvancedSubstate extends BaseOptionsMenu
blackBG.setGraphicSize(FlxG.width, FlxG.height);
blackBG.updateHitbox();
blackBG.alpha = 0;
coolText = new Alphabet(FlxG.width / 2, (FlxG.height / 2) - 35, "", true);

coolText = new Alphabet(FlxG.width / 2, (FlxG.height / 2) - 25, "", true);
coolText.alignment = CENTERED;
coolText.alpha = 0;

timer = new FlxTimer();

var option:Option = new Option('Hardware Caching',
'If checked, the game will use GPU to store images for to maintain MEM usage. ' +
'Restart the game for to apply changes.' +
Expand Down

0 comments on commit 34c9ca6

Please sign in to comment.