Code Monkey home page Code Monkey logo

pokeorange's People

Contributors

luckytyphlosion avatar monstarules avatar piacarrot avatar rangi42 avatar roukaour avatar sukiyami avatar suloku avatar wasabiraptor avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

pokeorange's Issues

bug in Request1bpp

sorry, github is making me jump through too many hoops to send you a one line change, and honestly, fuck github, however, i think this is a bug and here is a fix

dmitrygr@vwm:/tmp/pokeorange$ git show
commit 1530dfb10b4bbe587864b3fb3da0e2496c5f0526 (HEAD -> master)
Author: Dmitry Grinberg <[email protected]>
Date:   Tue Feb 6 23:13:55 2024 -0600

    Fix bug on copying <16 1bpp tiles when display is past line 135
    
    If Get1bpp() is called with the display on, it will call Request1bpp()
    If the current display line is >= 0x88, it'll fall through to ".loop"
    As there are fewer than 16 tiles requested, it'll jump to
    ".copyRemainingTilesAndExit". There it'll set up for the copy in VBLANK
    and then wait for the irq to happen, BUT, hRequested1bpp is never set
    to the proper number of tiles, instead that val is written to hTilesPerCycle
    by error (and immediately overwritten). The VBLANK IRQ does nothing,
    DelayFrame() returns, and no copy happened.
    
    I suspect this was a typo or a copy-and-paste error. The fix is trivial

diff --git a/home/copy.asm b/home/copy.asm
index e376aa0e..b616b439 100644
--- a/home/copy.asm
+++ b/home/copy.asm
@@ -256,7 +256,7 @@ Request1bpp:: ; f1e
        jr nz, .copySixteenTilesAndContinue
 .copyRemainingTilesAndExit
        add 16
-       ld [hTilesPerCycle], a
+       ld [hRequested1bpp], a
        xor a
        ld [hTilesPerCycle], a
        call DelayFrame
@@ -378,4 +378,4 @@ WriteVCopyRegistersToHRAM:
        ld [hRequestedVTileDest + 1], a
        ld a, c
        ld [hTilesPerCycle], a
-       ret
\ No newline at end of file
+       ret

Make error

I tried running the make command in the terminal, but it outputs:

`gcc -O3 -flto -std=c11 -o tools/lzcomp tools/lz/global.c tools/lz/main.c tools/lz/merging.c tools/lz/mpcomp.c tools/lz/nullcomp.c tools/lz/options.c tools/lz/output.c tools/lz/packing.c tools/lz/repcomp.c tools/lz/spcomp.c tools/lz/uncomp.c tools/lz/util.c
gcc -O3 -o tools/scan_includes tools/scan_includes.c

sort pokeorange.sym -o pokeorange.sym
Input file specified two times.

make: *** [Makefile:65: orange] Error 1`

I installed exactly the 0.5.2 version of rgbds, but neither that nor newer versions work.

P.S.: i run windows 10 64 bits

Make not possible

It seems like there is a problem with the current version of rgbs:
python dedenc.py audio/ded/dragalge.wav audio/ded/dragalge.ded
make: python: No such file or directory
make: *** [Makefile:121: audio/ded/dragalge.ded] Error 127

[Suggestion] Use pokerides

HI, loving the hack!

I was wondering if you've thought about adding pokerides instead of having HMs? This should free up a slot on the team without an HM slave.

Cygwin Install

The INSTALL.md for building on Windows in Cygwin states that the package "python" is needed. The Cygwin Setup is telling me that "python" has been obsoleted by "python2". Is the original "python" package actually needed, or are we good to just use "python2" like Cygwin wants us to?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.