Minor changes
Update Discord link Update Discord link Update Discord link
This commit is contained in:
@@ -14,7 +14,7 @@ Rewrite of my Nintendo 64 emulator "[shibumi](https://github.com/SimoneN64/shibu
|
|||||||
| [ Linux ](https://nightly.link/SimoneN64/Kaizen/workflows/build/master/kaizen-linux.zip) |
|
| [ Linux ](https://nightly.link/SimoneN64/Kaizen/workflows/build/master/kaizen-linux.zip) |
|
||||||
|
|
||||||
## Socials
|
## Socials
|
||||||
We have a [Discord server](https://discord.gg/xEvJDPp6)
|
We have a [Discord server](https://discord.gg/htzNd2rRF6)
|
||||||
|
|
||||||
## Sister projects
|
## Sister projects
|
||||||
- [**n64**](https://github.com/dillonb/n64): Low-level, fast, accurate and easy to use Nintendo 64 emulator
|
- [**n64**](https://github.com/dillonb/n64): Low-level, fast, accurate and easy to use Nintendo 64 emulator
|
||||||
|
|||||||
Submodule external/parallel-rdp/parallel-rdp-standalone updated: 63f8935dbb...799de4052e
@@ -120,22 +120,22 @@ bool TasMovieLoaded() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
FORCE_INLINE void LogController(const n64::Controller& controller) {
|
FORCE_INLINE void LogController(const n64::Controller& controller) {
|
||||||
Util::info("c_right: {}", controller.c_right);
|
Util::debug("c_right: {}", controller.c_right);
|
||||||
Util::info("c_left: {}", controller.c_left);
|
Util::debug("c_left: {}", controller.c_left);
|
||||||
Util::info("c_down: {}", controller.c_down);
|
Util::debug("c_down: {}", controller.c_down);
|
||||||
Util::info("c_up: {}", controller.c_up);
|
Util::debug("c_up: {}", controller.c_up);
|
||||||
Util::info("r: {}", controller.r);
|
Util::debug("r: {}", controller.r);
|
||||||
Util::info("l: {}", controller.l);
|
Util::debug("l: {}", controller.l);
|
||||||
Util::info("dp_right: {}", controller.dp_right);
|
Util::debug("dp_right: {}", controller.dp_right);
|
||||||
Util::info("dp_left: {}", controller.dp_left);
|
Util::debug("dp_left: {}", controller.dp_left);
|
||||||
Util::info("dp_down: {}", controller.dp_down);
|
Util::debug("dp_down: {}", controller.dp_down);
|
||||||
Util::info("dp_up: {}", controller.dp_up);
|
Util::debug("dp_up: {}", controller.dp_up);
|
||||||
Util::info("z: {}", controller.z);
|
Util::debug("z: {}", controller.z);
|
||||||
Util::info("b: {}", controller.b);
|
Util::debug("b: {}", controller.b);
|
||||||
Util::info("a: {}", controller.a);
|
Util::debug("a: {}", controller.a);
|
||||||
Util::info("start: {}", controller.start);
|
Util::debug("start: {}", controller.start);
|
||||||
Util::info("joy_x: {}", controller.joy_x);
|
Util::debug("joy_x: {}", controller.joy_x);
|
||||||
Util::info("joy_y: {}", controller.joy_y);
|
Util::debug("joy_y: {}", controller.joy_y);
|
||||||
}
|
}
|
||||||
|
|
||||||
n64::Controller TasNextInputs() {
|
n64::Controller TasNextInputs() {
|
||||||
|
|||||||
@@ -364,7 +364,7 @@ void Cop1::ctc1(Registers& regs, u32 instr) {
|
|||||||
case 0: break;
|
case 0: break;
|
||||||
case 31: {
|
case 31: {
|
||||||
fcr31.write(val);
|
fcr31.write(val);
|
||||||
FireFPUException(regs);
|
CheckFPUException();
|
||||||
} break;
|
} break;
|
||||||
default: Util::panic("Undefined CTC1 with rd != 0 or 31");
|
default: Util::panic("Undefined CTC1 with rd != 0 or 31");
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user