[Scummvm-git-logs] scummvm master -> 17f09418788dec7cd02051d19b7a142307b07743
mikrosk
noreply at scummvm.org
Thu Aug 24 20:39:48 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
17f0941878 GRAPHICS: Fix compilation of blit-atari.cpp
Commit: 17f09418788dec7cd02051d19b7a142307b07743
https://github.com/scummvm/scummvm/commit/17f09418788dec7cd02051d19b7a142307b07743
Author: Miro Kropacek (miro.kropacek at gmail.com)
Date: 2023-08-24T22:42:04+02:00
Commit Message:
GRAPHICS: Fix compilation of blit-atari.cpp
Changed paths:
graphics/blit/blit.cpp
graphics/module.mk
graphics/surface.cpp
diff --git a/graphics/blit/blit.cpp b/graphics/blit/blit.cpp
index f1106c23b64..4e4abb23d96 100644
--- a/graphics/blit/blit.cpp
+++ b/graphics/blit/blit.cpp
@@ -24,7 +24,7 @@
namespace Graphics {
-// see graphics/blit-atari.cpp
+// see graphics/blit/blit-atari.cpp
#ifndef ATARI
// Function to blit a rect
void copyBlit(byte *dst, const byte *src,
diff --git a/graphics/module.mk b/graphics/module.mk
index 8cd9d672686..35818fee54b 100644
--- a/graphics/module.mk
+++ b/graphics/module.mk
@@ -136,7 +136,7 @@ endif
ifdef ATARI
MODULE_OBJS += \
- blit-atari.o
+ blit/blit-atari.o
endif
ifeq ($(SCUMMVM_NEON),1)
diff --git a/graphics/surface.cpp b/graphics/surface.cpp
index 42da07d0372..b1c680a9c2d 100644
--- a/graphics/surface.cpp
+++ b/graphics/surface.cpp
@@ -63,7 +63,7 @@ void Surface::drawThickLine(int x0, int y0, int x1, int y1, int penX, int penY,
error("Surface::drawThickLine: bytesPerPixel must be 1, 2, or 4");
}
-// see graphics/blit-atari.cpp
+// see graphics/blit/blit-atari.cpp
#ifndef ATARI
void Surface::create(int16 width, int16 height, const PixelFormat &f) {
assert(width >= 0 && height >= 0);
More information about the Scummvm-git-logs
mailing list