Commit d950bd6
Bumping KOS version on master branch to 2.3.0.
- We introduced an API-breaking change to genwait(), which makes it now
take one less argument on master.
- The problem is that master is versioned at 2.2.2, which has the
genwait() change, but SO IS the v2.2.x branch, which does NOT have the
genwait change.
- We need to introduce a minor version bump into master to be able to
version properly within our codebase (Ocarina of Time) like so:
static void WaitForVBlank(void) {
/* +3 = 20 FPS (matching N64 original), +2 = 30, +1 = 60, +0 = uncapped */
while (sVblCounter < sLastVbl + 3)
genwait_wait((void*)&sVblCounter, NULL, 0, NULL);
genwait_wait((void*)&sVblCounter, NULL, 0);
sLastVbl = sVblCounter;
}
** This version bump just means the next tagged release will be v2.3.0,
but we are not actually tagging that release yet, just bumping the
version here. **1 parent 85f8485 commit d950bd6
1 file changed
Lines changed: 2 additions & 2 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
101 | | - | |
102 | | - | |
| 101 | + | |
| 102 | + | |
103 | 103 | | |
104 | 104 | | |
105 | 105 | | |
| |||
0 commit comments