Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 131834 | Differences between
and this patch

Collapse All | Expand All

(-)krystaldrop/Sources/KDpp/Tools/FilePath.h (-1 / +1 lines)
Lines 75-81 public: Link Here
75
	/**
75
	/**
76
		Adds a directory before the filePath....
76
		Adds a directory before the filePath....
77
	*/
77
	*/
78
	void KD_FilePath::PrefixDirectory(const string &path);
78
	void PrefixDirectory(const string &path);
79
79
80
80
81
	/**
81
	/**
(-)krystaldrop/Sources/KDpp/Video/Color.h (-1 / +1 lines)
Lines 38-44 public: Link Here
38
	KD_Color operator*( float lambda );
38
	KD_Color operator*( float lambda );
39
39
40
	// Multiply by another color
40
	// Multiply by another color
41
	KD_Color KD_Color::operator*( const KD_Color &other );
41
	KD_Color operator*( const KD_Color &other );
42
42
43
	// Sets all the components between 0 and 1
43
	// Sets all the components between 0 and 1
44
	void normalize();
44
	void normalize();
(-)krystaldrop/Sources/KrystalDrop/Game/AnimRow.h (-1 / +1 lines)
Lines 22-28 class KD_AnimatedRow: public KD_Row Link Here
22
   void UpdateBlocks (unsigned multiplier); /* multiplier is used to catch up when a lag has occured */
22
   void UpdateBlocks (unsigned multiplier); /* multiplier is used to catch up when a lag has occured */
23
  
23
  
24
  public:
24
  public:
25
   KD_AnimatedRow::KD_AnimatedRow (short Height_In_Gems, short x_Offset, 
25
   KD_AnimatedRow (short Height_In_Gems, short x_Offset, 
26
                                   KD_Hand* Hand, KD_Parameters* Param, KD_Memo* Memo);
26
                                   KD_Hand* Hand, KD_Parameters* Param, KD_Memo* Memo);
27
  ~KD_AnimatedRow();
27
  ~KD_AnimatedRow();
28
  
28
  
(-)krystaldrop/Sources/KrystalDrop/Game/Table.h (-1 / +1 lines)
Lines 329-335 public: Link Here
329
	/**
329
	/**
330
		Sets the sprites for the border of the field.
330
		Sets the sprites for the border of the field.
331
	*/
331
	*/
332
	void KD_Table::setAllBorders(KD_Sprite *spr[KD_NB_SPRITE_FOR_BORDER]);
332
	void setAllBorders(KD_Sprite *spr[KD_NB_SPRITE_FOR_BORDER]);
333
	void setHorizontalBar(KD_Sprite *spr);
333
	void setHorizontalBar(KD_Sprite *spr);
334
	void setVerticalBar(KD_Sprite *spr);
334
	void setVerticalBar(KD_Sprite *spr);
335
	void setUpperLeftBar(KD_Sprite *spr);
335
	void setUpperLeftBar(KD_Sprite *spr);
(-)krystaldrop/Sources/Makefile (-1 / +1 lines)
Lines 35-41 ACC_ZLIB_SUPPORT=yes Link Here
35
export
35
export
36
VERSION=0_7_2
36
VERSION=0_7_2
37
37
38
CC=g++ -Werror
38
CC=g++
39
LINK=g++
39
LINK=g++
40
MAKE=make
40
MAKE=make
41
41
(-)krystaldrop/Sources/Makefile.lib (-1 / +1 lines)
Lines 30-36 STATIC_LIBRARY=no Link Here
30
export
30
export
31
VERSION=0_7
31
VERSION=0_7
32
32
33
CC=g++ -Werror
33
CC=g++
34
LINK=g++
34
LINK=g++
35
MAKE=make
35
MAKE=make
36
36

Return to bug 131834