watch: rotate the other way

This commit is contained in:
Jesús A. Álvarez 2024-03-27 19:34:49 +01:00
parent 77fe18951c
commit 5e77c0796f
1 changed files with 1 additions and 1 deletions

View File

@ -126,7 +126,7 @@
emulator.screenLayer = [[self fullScreenView] layer];
emulator.speed = emulator.initialSpeed;
[emulator.screenLayer setContentsGravity:@"CAGravityResizeAspectFill"];
[emulator.screenLayer setAffineTransform:CGAffineTransformScale(CGAffineTransformMakeRotation(-M_PI_2), 0.375, 0.375)];
[emulator.screenLayer setAffineTransform:CGAffineTransformScale(CGAffineTransformMakeRotation(M_PI_2), 0.375, 0.375)];
[emulator.screenLayer setMinificationFilter:@"CAFilterTrilinear"];
[emulator performSelector:@selector(run) withObject:nil afterDelay:0.1];
}