Package: celestia
Version: 1.6.1+dfsg-3
in image.{cpp,h}, it uses 'mips' as variable name,
while on mips64el, it is a macro.
Index: celestia-1.6.1+dfsg/src/celengine/image.cpp
===================================================================
--- celestia-1.6.1+dfsg.orig/src/celengine/image.cpp 2014-07-09
17:37:06.000000000 +0800
+++ celestia-1.6.1+dfsg/src/celengine/image.cpp 2014-07-09 17:37:41.011354702
+0800
@@ -149,10 +149,10 @@
}
-Image::Image(int fmt, int w, int h, int mips) :
+Image::Image(int fmt, int w, int h, int mps) :
width(w),
height(h),
- mipLevels(mips),
+ mipLevels(mps),
format(fmt),
pixels(NULL)
{
Index: celestia-1.6.1+dfsg/src/celengine/image.h
===================================================================
--- celestia-1.6.1+dfsg.orig/src/celengine/image.h 2011-06-06
00:11:09.000000000 +0800
+++ celestia-1.6.1+dfsg/src/celengine/image.h 2014-07-09 17:37:50.964480128
+0800
@@ -22,7 +22,7 @@
class Image
{
public:
- Image(int fmt, int w, int h, int mips = 1);
+ Image(int fmt, int w, int h, int mps = 1);
~Image();
int getWidth() const;