mirror of
https://github.com/MightyPirates/OpenComputers.git
synced 2025-09-16 10:51:55 -04:00
fix #3609
This commit is contained in:
parent
f8cb77e441
commit
d3d887f22f
@ -27,6 +27,7 @@
|
|||||||
* Changed: The game now crashes instead of reloading defaults if a config file is present but invalid.
|
* Changed: The game now crashes instead of reloading defaults if a config file is present but invalid.
|
||||||
* Fixed: [#3588] Renaming over other files does not properly free space.
|
* Fixed: [#3588] Renaming over other files does not properly free space.
|
||||||
* Fixed: [#3591] Memory leak with wrapped worlds from other mods.
|
* Fixed: [#3591] Memory leak with wrapped worlds from other mods.
|
||||||
|
* Fixed: [#3609] Swapped arguments in a graphics card "bitblt()" edge case.
|
||||||
* Removed: Native Lua library support for x86 (32-bit) macOS.
|
* Removed: Native Lua library support for x86 (32-bit) macOS.
|
||||||
* (1.7.10) Fixed: [#3239] Inconsistencies in Robot block clicking.
|
* (1.7.10) Fixed: [#3239] Inconsistencies in Robot block clicking.
|
||||||
|
|
||||||
|
@ -258,7 +258,7 @@ class GraphicsCard(val tier: Int) extends prefab.ManagedEnvironment with DeviceI
|
|||||||
result(true)
|
result(true)
|
||||||
} else {
|
} else {
|
||||||
// at least one of the two buffers is a gpu buffer
|
// at least one of the two buffers is a gpu buffer
|
||||||
component.GpuTextBuffer.bitblt(dst, col, row, w, h, src, fromRow, fromCol)
|
component.GpuTextBuffer.bitblt(dst, col, row, w, h, src, fromCol, fromRow)
|
||||||
result(true)
|
result(true)
|
||||||
}
|
}
|
||||||
} else result(Unit, "not enough energy")
|
} else result(Unit, "not enough energy")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user