Skip to content

Commit f7f6ee1

Browse files
committed
whoops
1 parent 7dd92c0 commit f7f6ee1

File tree

5 files changed

+12
-10
lines changed

5 files changed

+12
-10
lines changed

Project.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -143,8 +143,8 @@
143143

144144
<!--Mixtape stuff needed-->
145145
<haxelib name="openfl" /> <!-- Game engine backend -->
146-
<!-- <haxelib name="openflCamera" />
147-
<haxelib name="openflMicrophone" /> -->
146+
<!--haxelib name="openflCamera" />
147+
<haxelib name="openflMicrophone" /-->
148148
<haxelib name="haxeui-core" /> <!-- UI framework -->
149149
<haxelib name="haxeui-flixel" /> <!-- Integrate HaxeUI with Flixel -->
150150
<haxelib name="flixel-text-input" /> <!-- Improved text field rendering for HaxeUI -->
@@ -158,7 +158,7 @@
158158
<haxelib name="linc_luajit" if="LUA_ALLOWED"/>
159159
<haxelib name="hscript-iris" if="HSCRIPT_ALLOWED" version="1.1.3"/>
160160
<haxelib name="hxvlc" if="VIDEOS_ALLOWED" version="2.0.1"/>
161-
<haxelib name="hxdiscord_rpc" version="1.3.0" if="DISCORD_ALLOWED"/>
161+
<haxelib name="hxdiscord_rpc" version="1.2.4" if="DISCORD_ALLOWED"/>
162162
<haxelib name="flxanimate"/>
163163
<haxelib name="hxpy" if="PYTHON_ALLOWED" />
164164

setup/unixLinux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ haxelib install flixel-addons 3.3.2
1515
haxelib install flixel-tools 1.5.1
1616
haxelib install hscript-iris 1.1.3
1717
haxelib install tjson 1.4.0
18-
haxelib install hxdiscord_rpc 1.3.0
18+
haxelib install hxdiscord_rpc 1.2.4
1919
haxelib install hxvlc 2.0.1 --skip-dependencies
2020
haxelib install helder.set 0.3.1
2121
haxelib install yaml 2.0.1

setup/unixMac.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ haxelib install flixel-addons 3.3.2
1515
haxelib install flixel-tools 1.5.1
1616
haxelib install hscript-iris 1.1.3
1717
haxelib install tjson 1.4.0
18-
haxelib install hxdiscord_rpc 1.3.0
18+
haxelib install hxdiscord_rpc 1.2.4
1919
haxelib install hxvlc 2.0.1 --skip-dependencies
2020
haxelib install helder.set 0.3.1
2121
haxelib install yaml 2.0.1

setup/windows.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ haxelib install flixel-addons 3.3.2
1111
haxelib install flixel-tools 1.5.1
1212
haxelib install hscript-iris 1.1.3
1313
haxelib install tjson 1.4.0
14-
haxelib install hxdiscord_rpc 1.3.0
14+
haxelib install hxdiscord_rpc 1.2.4
1515
haxelib install hxvlc 2.0.1 --skip-dependencies
1616
haxelib install helder.set 0.3.1
1717
haxelib install yaml 2.0.1

source/psychlua/WindowFunctions.hx

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ class WindowFunctions
99
var lua = funk.lua;
1010
var game:PlayState = PlayState.instance;
1111

12+
#if windows
1213
Lua_helper.add_callback(lua, "setWindowOppacity", function(num:Float) {
1314
CppAPI.setWindowOppacity(num);
1415
});
@@ -40,7 +41,7 @@ class WindowFunctions
4041
Lua_helper.add_callback(lua, "windowX", function() {
4142
return Window.x;
4243
});
43-
44+
4445
Lua_helper.add_callback(lua, "windowY", function() {
4546
return Window.y;
4647
});
@@ -56,12 +57,12 @@ class WindowFunctions
5657
Lua_helper.add_callback(lua, "windowTitle", function() {
5758
return Window.title;
5859
});
59-
60+
6061
Lua_helper.add_callback(lua, "windowReset", function() {
6162
WindowUtils.resetTitle();
6263
Window.reset();
6364
});
64-
65+
6566
Lua_helper.add_callback(lua, "windowSetPos", function(x:Int, y:Int) {
6667
Window.setPos(x, y);
6768
});
@@ -89,5 +90,6 @@ class WindowFunctions
8990
Lua_helper.add_callback(lua, "setTransparency", function(color:Int, ?winName:String) {
9091
CppAPI.setTransparency(winName, color);
9192
});
93+
#end
9294
}
93-
}
95+
}

0 commit comments

Comments
 (0)