]> code.bitgloo.com Git - clyne/gamedev.git/commitdiff
fixed world again
authorClyne Sullivan <tullivan99@gmail.com>
Thu, 29 Oct 2015 12:15:06 +0000 (08:15 -0400)
committerClyne Sullivan <tullivan99@gmail.com>
Thu, 29 Oct 2015 12:15:06 +0000 (08:15 -0400)
include/common.h
include/world.h
src/world.cpp

index 3c83e668058f0ae4961ddaeec65db667db3f6c32..f278020fd1c41ac652e85560f961913bf11aff1b 100644 (file)
@@ -65,7 +65,7 @@ typedef struct {
  * 
 */
 
-#define HLINE 2        // 3 as in 3 pixels
+#define HLINE 3        // 3 as in 3 pixels
 
 /*
  *     Define 'our' random number generation library. Eventually these macros will be replaced
index ef9ef6ec996157cbfe49c1a4b11af31c5fcfea69..ab161c05df54aed8e2bacbed524b54d1036fe0eb 100644 (file)
@@ -71,7 +71,7 @@ public:
                                                                                                                // drawn and handled by the world.
        void addHole(unsigned int start,unsigned int end);      // Create a hole in the world
        
-       int getWidth(void);
+       int getStart(void);
 };
 
 float worldGetYBase(World *w);
index ec91c0271de9c9c0b2e2ea12acba784ca8f8c603..97ec5accf2f06573deab8fdb1dc3273ebd7803b4 100644 (file)
@@ -581,7 +581,7 @@ void World::addHole(unsigned int start,unsigned int end){
        }
 }
 
-int World::getWidth(void){
+int World::getStart(void){
        return -x_start;
 }