openrune: just about finish rework, gets to login

This commit is contained in:
therealunull
2020-12-13 15:12:37 -05:00
parent 11a239e94e
commit b54ff7f7db
693 changed files with 11362 additions and 3943 deletions

View File

@@ -219,7 +219,7 @@ public class WorldMapSection0 implements WorldMapSection {
garbageValue = "1856556337"
)
@Export("convertJpgToSprite")
public static final Sprite convertJpgToSprite(byte[] var0) {
public static final SpritePixels convertJpgToSprite(byte[] var0) {
BufferedImage var1 = null; // L: 20
try {
@@ -229,12 +229,12 @@ public class WorldMapSection0 implements WorldMapSection {
int[] var4 = new int[var2 * var3]; // L: 25
PixelGrabber var5 = new PixelGrabber(var1, 0, 0, var2, var3, var4, 0, var2); // L: 26
var5.grabPixels(); // L: 27
return new Sprite(var4, var2, var3); // L: 28
return new SpritePixels(var4, var2, var3); // L: 28
} catch (IOException var7) { // L: 30
} catch (InterruptedException var8) { // L: 31
}
return new Sprite(0, 0); // L: 32
return new SpritePixels(0, 0); // L: 32
}
@ObfuscatedName("j")