summaryrefslogtreecommitdiff
path: root/src/koopatlas/camera.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/koopatlas/camera.cpp35
1 files changed, 3 insertions, 32 deletions
diff --git a/src/koopatlas/camera.cpp b/src/koopatlas/camera.cpp
index 8b7ee10..d98bff0 100644
--- a/src/koopatlas/camera.cpp
+++ b/src/koopatlas/camera.cpp
@@ -66,39 +66,10 @@ int dWorldCamera_c::onDelete() {
int dWorldCamera_c::onExecute() {
- int heldButtons = Remocon_GetButtons(GetActiveRemocon());
- if (heldButtons & WPAD_MINUS) {
- bool change = false;
- /*if (heldButtons & WPAD_LEFT) {
- currentX -= 8.0f;
- change = true;
- }
- if (heldButtons & WPAD_RIGHT) {
- currentX += 8.0f;
- change = true;
- }
- if (heldButtons & WPAD_UP) {
- currentY += 8.0f;
- change = true;
- }
- if (heldButtons & WPAD_DOWN) {
- currentY -= 8.0f;
- change = true;
- }*/
- if (heldButtons & WPAD_B) {
- zoomLevel -= 0.10f;
- change = true;
- }
- if (heldButtons & WPAD_A) {
- zoomLevel += 0.10f;
- change = true;
- }
- if (change) {
- }
- }
if (dScKoopatlas_c::instance->warpZoneHacks) {
- currentX = 2484.0f;
- currentY = -2100.0f;
+ currentX = 2040.0f;
+ currentY = -1460.0f;
+ zoomLevel = 3.4f;
} else {
daWMPlayer_c *player = daWMPlayer_c::instance;
currentX = player->pos.x;