From fdfa9d1decfbba6b1f23837c19315ddedfa1e16c Mon Sep 17 00:00:00 2001 From: Muzzarino Date: Wed, 27 Mar 2019 15:21:26 -0700 Subject: [PATCH] Pointer address targeting --- source/app.d | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/app.d b/source/app.d index 0d84829..9554c5a 100644 --- a/source/app.d +++ b/source/app.d @@ -210,10 +210,10 @@ class Application : TkdApplication { if (!codeIsExecute) { try { startAddress = addressEntry.getValue.to!uint(16); - if (startAddress < 0x80000000 || startAddress > 0x81FFFFFF) throw new Exception("ayy lmao"); + if (startAddress < 0x80000000 || startAddress > 0x91FFFFFF) throw new Exception("ayy lmao"); } catch (Exception e) { - errorNotice("Your address should be a hex number between 80000000 and 81FFFFFF (or use N/A for the C0 codetype)."); + errorNotice("Your address should be a hex number between 80000000 and 81FFFFFF (or use N/A for the C0 codetype). If you're using a pointer address, use a hex number between 90000000 and 91FFFFFF."); return; } } @@ -433,4 +433,4 @@ class Application : TkdApplication { void main() { auto application = new Application; application.run(); -} \ No newline at end of file +}